home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
090
/
jazclib1.arc
/
INT24ERR.C
< prev
next >
Wrap
Text File
|
1986-04-06
|
801b
|
24 lines
/*
┌────────────────────────────────────────────────────────────────────────────┐
│int24err.c │
│This routine , used in conjunction with insint24.c is called after any dos │
│i/o operation and returns an errorcode which avoids the │
│Abort, Retry, Ignore stuff. │
│ │
│ (C) JazSoft Software by Jack A. Zucker (301) 794-5950 │
└────────────────────────────────────────────────────────────────────────────┘
*/
int24err()
{
extern int far int24error;
int w;
w = int24error;
int24error = 0; /* reset error to zero */
return(w);
}